home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- repeat with n = 8 to 10
- handcursor(n)
- end repeat
- repeat with n = 12 to 13
- handcursor(n)
- end repeat
- if rollOver(2) then
- set the visible of sprite 5 to 1
- set the visible of sprite 6 to 0
- set the visible of sprite 7 to 0
- else
- set the visible of sprite 5 to 0
- end if
- if rollOver(3) then
- set the visible of sprite 5 to 0
- set the visible of sprite 6 to 1
- set the visible of sprite 7 to 0
- else
- set the visible of sprite 6 to 0
- end if
- if rollOver(4) then
- set the visible of sprite 5 to 0
- set the visible of sprite 6 to 0
- set the visible of sprite 7 to 1
- else
- set the visible of sprite 7 to 0
- end if
- updateStage()
- go(the frame)
- end
-